Function: org-string<

org-string< is a byte-compiled function defined in org-macs.el.

Signature

(org-string< A B &optional LOCALE IGNORE-CASE)

Documentation

Return non-nil when string A < string B.

LOCALE is the locale name. IGNORE-CASE, when non-nil, makes comparison ignore case.

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-string< (a b &optional locale ignore-case)
  "Return non-nil when string A < string B.
LOCALE is the locale name.  IGNORE-CASE, when non-nil, makes comparison
ignore case."
  (if (= 4 (cdr (func-arity org-sort-function)))
      (funcall org-sort-function a b locale ignore-case)
    (funcall org-sort-function a b)))